1af06fdbcc806879d959e4f58bea96d4583959c1,flow/src/main/java/flow/InternalLifecycleIntegration.java,InternalLifecycleIntegration,onNewIntent,#Intent#,101

Before Change


      History history = History.from(intent.getParcelableExtra(Flow.HISTORY_KEY),
          checkNotNull(parceler,
              "Intent has a Flow history extra, but Flow was not installed with a KeyParceler"));
      flow.setHistory(history, Flow.Direction.REPLACE);
    }
  }

After Change


          "Intent has a Flow history extra, but Flow was not installed with a KeyParceler");
      History.Builder builder = History.emptyBuilder();
      load((Bundle) intent.getParcelableExtra(INTENT_KEY), parceler, builder, keyManager);
      flow.setHistory(builder.build(), Flow.Direction.REPLACE);
    }
  }